home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / spngpx.h < prev    next >
C/C++ Source or Header  |  1996-04-29  |  2KB  |  51 lines

  1. /* Copyright (C) 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* spngpx.h */
  20. /* PNG pixel prediction filter state definition */
  21. /* Requires strimpl.h */
  22.  
  23. /* PNGPredictorDecode / PNGPredictorEncode */
  24. typedef struct stream_PNGP_state_s {
  25.     stream_state_common;
  26.         /* The client sets the following before initialization. */
  27.     int Colors;        /* # of colors, 1..16 */
  28.     int BitsPerComponent;    /* 1, 2, 4, 8, 16 */
  29.     uint Columns;        /* >0 */
  30.     int Predictor;        /* 10-15, only relevant for Encode */
  31.         /* The init procedure computes the following. */
  32.     uint row_count;        /* # of bytes per row */
  33.     byte end_mask;        /* mask for left-over bits in last byte */
  34.     int bpp;        /* bytes per pixel */
  35.     byte *prev_row;        /* previous row */
  36.     int case_index;        /* switch index for case dispatch, */
  37.                 /* set dynamically when decoding */
  38.         /* The following are updated dynamically. */
  39.     long row_left;        /* # of bytes left in row */
  40.     byte prev[32];        /* previous samples */
  41. } stream_PNGP_state;
  42. #define private_st_PNGP_state()    /* in sPNGP.c */\
  43.   gs_private_st_ptrs1(st_PNGP_state, stream_PNGP_state,\
  44.     "PNGPredictorEncode/Decode state", pngp_enum_ptrs, pngp_reloc_ptrs,\
  45.     prev_row)
  46. #define s_PNGP_set_defaults_inline(ss)\
  47.   ((ss)->Colors = 1, (ss)->BitsPerComponent = 8, (ss)->Columns = 1,\
  48.    (ss)->Predictor = 15)
  49. extern const stream_template s_PNGPD_template;
  50. extern const stream_template s_PNGPE_template;
  51.